From 37c5bee341aa898c0f368d962b7697ac8f3cbd73 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Fri, 8 Dec 2006 11:13:44 +0000 Subject: [PATCH] Fix capitalisation of on-wire calls for VM.set_platform_std_VGA and VM.set_otherConfig. Signed-off-by: Ewan Mellor --- tools/libxen/src/xen_vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/libxen/src/xen_vm.c b/tools/libxen/src/xen_vm.c index e6c95fc12e..22ba6cc266 100644 --- a/tools/libxen/src/xen_vm.c +++ b/tools/libxen/src/xen_vm.c @@ -1303,7 +1303,7 @@ xen_vm_set_platform_std_vga(xen_session *session, xen_vm vm, bool std_vga) .u.bool_val = std_vga } }; - xen_call_(session, "VM.set_platform_std_vga", param_values, 2, NULL, NULL); + xen_call_(session, "VM.set_platform_std_VGA", param_values, 2, NULL, NULL); return session->ok; } @@ -1479,7 +1479,7 @@ xen_vm_set_otherconfig(xen_session *session, xen_vm vm, xen_string_string_map *o .u.set_val = (arbitrary_set *)otherconfig } }; - xen_call_(session, "VM.set_otherconfig", param_values, 2, NULL, NULL); + xen_call_(session, "VM.set_otherConfig", param_values, 2, NULL, NULL); return session->ok; } -- 2.30.2